home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 November / Macworld (1999-11).dmg / Shareware World / Comms & Internet / DXF to VRML97 1.0.1 / src / DropUNIX Lib / Main.h next >
Text File  |  1998-08-14  |  497b  |  24 lines

  1. #if !defined(__DROPUNIX_MAIN__)
  2. #define __DROPUNIX_MAIN__
  3.  
  4. /*
  5. ** Prototypes:
  6. */
  7.     int Main(int argc, char ** argv);
  8.  
  9. /*
  10. ** #Defines:
  11. */
  12.     /*
  13.     ** Notice that this #define is INTENTIONAL and is used
  14.     ** to convert unix sources as cleanly as possible...
  15.     ** Just #include this file at the top of the source file
  16.     ** containing main(), and add the library and the resource
  17.     ** file to the project. Voila! You have a macintosh drag &
  18.     ** drop app!
  19.     */
  20.  
  21.     #define main Main
  22.  
  23. #endif /* __DROPUNIX_MAIN__ */
  24.